home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET
/
BCI NET Dec 94.iso
/
archives
/
programming
/
libraries
/
mui20dev.lha
/
MUI
/
Developer
/
Modula
/
CompilerScript
next >
Wrap
Text File
|
1994-02-10
|
590b
|
29 lines
; this is a little script which will compile the M2-Interface and copy
; the stuff to m2:modules
; it will use your compiler-options as they are set in your environment
; variable m2c
;
; This was written on the fly by Christian Scholz on 26.10.1993
; updated 4.2.94 for MuiClasses.def
;
; first compile the interface
echo "Compiling the interface..."
m2make -x-d-q MuiMacros
m2make -x-d-q MuiClasses
; now copy the stuff to m2:modules
echo "copying the interface to m2:modules..."
copy sym/#?.sym to m2:modules/sym
copy obj/#?.obj to m2:modules/obj
echo "finished!"
; Terminate!